home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / tcl / extend / man / CreateExte.3 < prev    next >
Encoding:
Text File  |  1993-10-26  |  1.7 KB  |  53 lines  |  [TEXT/MPS ]

  1. .\"
  2. .\" CreateExte.man
  3. .\"
  4. .\" Extended Tcl binary file search command.
  5. .\"----------------------------------------------------------------------------
  6. .\" Copyright 1992-1993 Karl Lehenbauer and Mark Diekhans.
  7. .\"
  8. .\" Permission to use, copy, modify, and distribute this software and its
  9. .\" documentation for any purpose and without fee is hereby granted, provided
  10. .\" that the above copyright notice appear in all copies.  Karl Lehenbauer and
  11. .\" Mark Diekhans make no representations about the suitability of this
  12. .\" software for any purpose.  It is provided "as is" without express or
  13. .\" implied warranty.
  14. .\"----------------------------------------------------------------------------
  15. .\" $Id: CreateExte.3,v 2.2 1993/07/31 03:45:25 markd Exp $
  16. .\"----------------------------------------------------------------------------
  17. .\"
  18. .TH Tcl_CreateExtendedInterp TCL "" "tcl"
  19. .ad b
  20. .BS
  21. .SH NAME
  22. Tcl_CreateExtendedInterp, Tcl_AddExtendedCmds, Tcl_AddExtendedLibCmds \- initialized Extended Tcl commands.
  23. '
  24. .SH SYNOPSIS
  25. .nf
  26. .ft CW
  27. #include <tclExtend.h>
  28.  
  29. Tcl_Interp *
  30. Tcl_CreateExtendedInterp ();
  31.  
  32. void
  33. Tcl_AddExtendedCmds (Tcl_Interp *interp);
  34.  
  35. void
  36. Tcl_AddExtendedLibCmds (Tcl_Interp *interp);
  37. .ft R
  38. .fi
  39. .BE
  40. '
  41. .SH DESCRIPTION
  42. .PP
  43. \fBTcl_CreateExtendedInterp\fR creates a new interpreter structure and returns
  44. a pointer to the interpreter data stucture, as with \fBTcl_CreateInterp\fR.
  45. In addition, all Extended Tcl commands will be added to the interpreter.
  46. .PP
  47. \fBTcl_AddExtendedCmds\fR adds the Extended Tcl commands to the specified
  48. interpreter (except for the library commands that override that standard Tcl
  49. procedures).
  50. .PP
  51. \fBTcl_AddExtendedLibCmds\fR adds the Extended Tcl library management
  52. commands.  These override the standard Tcl procedures.
  53.